
        * { margin:0; padding:0; box-sizing:border-box; }
        :root {
            --deep-blue: #001a4d;
            --brand: #1e40af;
            --accent: #3b82f6;
            --light-blue: #dbeafe;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --bg-soft: #f8fafc;
            --border: #e2e8f0;
            --grad-primary: linear-gradient(135deg, #1e40af, #3b82f6);
            --shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
            --radius: 28px;
            --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            font-family: var(--font);
            color: var(--text-dark);
            background: white;
            line-height: 1.5;
            overflow-x: hidden;
        }
        .container { max-width:1280px; margin:0 auto; padding:0 24px; width:100%; }
        @media (min-width:768px) { .container { padding:0 30px; } }
        h1,h2,h3 { font-weight:700; line-height:1.2; }
        h1 { font-size:clamp(2.2rem,5vw,4rem); }
        h2 { font-size:clamp(1.8rem,4vw,2.8rem); margin-bottom:1rem; }
        h2 span { color:var(--brand); }
        a { text-decoration:none; color:inherit; }
        img { max-width:100%; height:auto; display:block; }

        /* header spacer */
        .header-spacer { height: calc(38px + 95px); width:100%; }

        /* ===== HERO - 100% Cover ===== */
        .hero-inner-page {
            background: linear-gradient(135deg, #001a4d 0%, #1e40af 100%);
            min-height: 100vh;
            min-height: 100dvh;
            padding: 60px 0 50px;
            text-align: center;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero-inner-page .container { width: 100%; }
        .hero-inner-page h1 { color:white; margin-bottom:1rem; }
        .hero-inner-page p { font-size:1.2rem; opacity:0.95; max-width:800px; margin:0 auto; }
        @media (max-width: 768px) {
            .hero-inner-page { padding: 50px 0 40px; }
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-wrapper {
            background: var(--bg-soft); padding:12px 0; border-bottom:1px solid var(--border);
        }
        .breadcrumb {
            display:flex; flex-wrap:nowrap; gap:8px; list-style:none; font-size:0.9rem;
            overflow-x:auto; white-space:nowrap; padding:4px 0; -webkit-overflow-scrolling:touch;
        }
        .breadcrumb::-webkit-scrollbar { display:none; }
        .breadcrumb-item a { color:var(--brand); font-weight:500; }
        .breadcrumb-item.active { color:var(--text-muted); }
        .breadcrumb-item+.breadcrumb-item::before { content:"/"; padding-right:8px; color:var(--text-muted); }

        /* ===== SECTION STYLES ===== */
        .section-padding { padding:70px 0; }
        @media (max-width:768px) { .section-padding { padding:50px 0; } }
        .bg-soft { background:var(--bg-soft); }

        .section-header {
            max-width:800px; margin:0 auto 40px; text-align:center;
        }
        .section-header p { color:var(--text-muted); font-size:1.1rem; }

        /* ===== MERGED CONTENT + IMAGE BLOCKS ===== */
        .content-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin: 40px 0;
        }

        /* Tablet view improvements */
        @media (min-width: 768px) and (max-width: 1024px) {
            .content-block {
                gap: 30px;
            }
            .content-text h3 {
                font-size: 1.6rem;
            }
            .content-text p {
                font-size: 1rem;
            }
            .service-list li {
                font-size: 0.95rem;
            }
            .content-image {
                padding: 15px;
            }
        }

        @media (max-width: 992px) {
            .content-block {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .content-block.reverse .content-image {
            order: 2;
        }
        .content-block.reverse .content-text {
            order: 1;
        }
        @media (max-width: 992px) {
            .content-block.reverse .content-image { order: 1; }
            .content-block.reverse .content-text { order: 2; }
        }
        .content-image {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .content-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            transition: transform 0.5s ease;
        }
        .content-image:hover img {
            transform: scale(1.02);
        }
        .content-text h3 {
            font-size: 1.8rem;
            color: var(--deep-blue);
            margin-bottom: 20px;
        }
        .content-text h3 span { color: var(--brand); }
        .content-text p {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .service-list {
            list-style: none;
            margin: 25px 0;
        }
        .service-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
            color: var(--text-dark);
        }
        .service-list li i {
            color: var(--brand);
            font-size: 1.2rem;
            min-width: 24px;
            margin-top: 2px;
        }

        /* ===== INDUSTRY TAGS ===== */
        .industry-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 30px 0 20px;
        }
        .industry-tags span {
            background: var(--light-blue);
            color: var(--brand);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid var(--border);
        }

        /* ===== CTA (same as other pages) ===== */
        .cta-gradient-box {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            border-radius: 32px;
            padding: 60px 45px;
            display: flex;
            flex-direction: column;
            gap: 35px;
            color: white;
            box-shadow: 0 20px 30px rgba(0,0,0,0.2);
            margin: 40px 0 60px;
        }
        .cta-gradient-box h2 { font-size: 2.2rem; color: white !important; }
        .cta-gradient-box p { font-size: 1.2rem; line-height: 1.7; color: rgba(255,255,255,0.95); }
        .cta-buttons-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .cta-btn {
            display: inline-flex; align-items: center; gap: 14px;
            background: white; color: #000;
            padding: 18px 44px; border-radius: 60px;
            font-weight: 700; font-size: 1.2rem;
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            border: none; transition: 0.2s;
        }
        .cta-btn i { font-size: 1.4rem; }
        .cta-btn.wa { background: #25D366; color: white; }
        @media (max-width: 768px) {
            .cta-gradient-box { padding: 40px 25px; gap: 25px; }
            .cta-buttons-row { flex-direction: column; }
            .cta-btn { justify-content: center; padding: 16px 30px; }
        }

        /* ===== CONTACT FORM ===== */
        .contact-merged-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
            margin-bottom: 30px;
        }

        /* Tablet improvements for contact form */
        @media (min-width: 768px) and (max-width: 1024px) {
            .contact-merged-box {
                grid-template-columns: 1fr 1fr;
            }
            .contact-image-side {
                min-height: 450px;
            }
            .contact-form-side {
                padding: 40px 30px;
            }
            .contact-form-card h2 {
                font-size: 1.8rem;
            }
            .contact-form-card .sub {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            .form-group input,
            .form-group textarea {
                padding: 14px 18px;
                font-size: 0.95rem;
            }
            .btn-submit {
                padding: 14px 18px;
                font-size: 1rem;
            }
        }

        .contact-image-side {
            min-height: 600px;
        }

        .contact-image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-form-side {
            display: flex;
            align-items: center;
            padding: 60px 50px;
            background: white;
        }

        .contact-form-card {
            width: 100%;
        }

        .contact-form-card h2 {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }

        .contact-form-card .sub {
            color: var(--text-muted);
            margin-bottom: 30px;
            font-size: 1.2rem;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 18px 22px;
            border: 2px solid var(--border);
            border-radius: 14px;
            font-size: 1.1rem;
            background: white;
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, #2563eb, #1e40af);
            color: white;
            padding: 18px 20px;
            border: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(30,64,175,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .privacy-note {
            margin-top: 25px;
            font-size: 1rem;
            color: var(--text-muted);
        }

        .privacy-note i {
            margin-right: 6px;
        }

        @media (max-width: 768px) {
            .contact-merged-box {
                grid-template-columns: 1fr;
            }
            .contact-image-side {
                min-height: 300px;
            }
            .contact-form-side {
                padding: 40px 25px;
            }
            .contact-form-card h2 {
                font-size: 1.8rem;
            }
        }

        /* Extra spacing after contact form */
        .contact-section {
            margin-bottom: 60px;
        }

        .footer-credit {
            padding: 1.5rem 0;
            text-align: center;
            color: #aaa;
            border-top: 1px solid var(--border);
            font-size: 0.9rem;
        }
